home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 3 / Cream of the Crop 3.iso / clipper / ks94an.zip / MEMARRAY.HDR < prev    next >
Text File  |  1994-04-25  |  886b  |  35 lines

  1. /******************************************************************************
  2.                  The Klipper Library, for CA-Clipper 5.x
  3.         Copyright (c), 1994, Wallace Information Systems Engineering
  4.  
  5. FUNCTION:
  6.  
  7. _MemToArray( cMemFile ) --> aArray
  8.  
  9. PARAMETERS:
  10.  
  11. cMemFile: .MEM file to load to array.
  12.  
  13. SHORT:
  14.  
  15. Load .MEM file to local array instead of main application memory.
  16.  
  17. DESCRIPTION:
  18.  
  19. _MemToArray() loads the contents of a specified .MEM file into an array
  20. rather than into the program's main memory.
  21.  
  22. NOTE:
  23.  
  24.  
  25.  
  26. EXAMPLE:
  27.  
  28. LOCAL aArrayName := _MemToArray('test.mem')
  29.  
  30. The resulting array is multi-dimensional, one element per memory variable
  31. and each element containing elements that contain, NAME, TYPE, LEN, DEC,
  32. and CONTENTS of each variable in the .MEM file.
  33.  
  34. ******************************************************************************/
  35.